Temporal Discretization
   HOME

TheInfoList



OR:

Temporal discretization is a mathematical technique applied to transient problems that occur in the fields of applied physics and engineering. Transient problems are often solved by conducting simulations using
computer-aided engineering Computer-aided engineering (CAE) is the broad usage of computer software to aid in engineering analysis tasks. It includes , , , durability and optimization. It is included with computer-aided design (CAD) and computer-aided manufacturing (CAM) ...
(CAE) packages, which require discretizing the governing equations in both space and time. Such problems are unsteady (e.g. flow problems), and therefore require solutions in which position varies as a function of time. Temporal discretization involves the
integration Integration may refer to: Biology *Multisensory integration *Path integration * Pre-integration complex, viral genetic material used to insert a viral genome into a host genome *DNA integration, by means of site-specific recombinase technology, ...
of every term in different equations over a time step (\Delta t). The spatial domain can be discretized to produce a semi-discrete form: \frac(x,t) = F(\varphi).~ If the discretization is done using backward differences, the first-order temporal discretization is given as:Selection of Spatial and Temporal discretization
/ref> \frac = F(\varphi), And the second-order
discretization In applied mathematics, discretization is the process of transferring continuous functions, models, variables, and equations into discrete counterparts. This process is usually carried out as a first step toward making them suitable for numerical ...
is given as: \frac = F(\varphi), where * \varphi is a
scalar Scalar may refer to: *Scalar (mathematics), an element of a field, which is used to define a vector space, usually the field of real numbers * Scalar (physics), a physical quantity that can be described by a single element of a number field such ...
quantity. * n + 1 is the value at the next time level, t + \Delta t. * n is the value at the current time level, t. * n - 1 is the value at the previous time level, t - \Delta t. The function F(\varphi) is evaluated using implicit- and explicit-time integration.


Description

The temporal discretization is done through
integration Integration may refer to: Biology *Multisensory integration *Path integration * Pre-integration complex, viral genetic material used to insert a viral genome into a host genome *DNA integration, by means of site-specific recombinase technology, ...
over time on the general discretized equation. First, values at a given control volume P at time interval t are assumed and then value at time interval t + \Delta t is found. This method states that the time integral of a given variable is equal to a weighted average between current and future values. The
integral In mathematics Mathematics is an area of knowledge that includes the topics of numbers, formulas and related structures, shapes and the spaces in which they are contained, and quantities and their changes. These topics are represented i ...
form of the equation can be written as: \frac = f\cdot F( \varphi^) + (1-f) \cdot F( \varphi^n ), where f is a weight between 0 and 1. * f = 0.0 results in the fully explicit scheme. * f = 1.0 results in the fully implicit scheme. * f = 0.5 results in the Crank-Nicolson scheme. For any control volume this integration holds true for any discretized variable. The following equation is obtained when applied to the governing equation including full discretized
diffusion Diffusion is the net movement of anything (for example, atoms, ions, molecules, energy) generally from a region of higher concentration to a region of lower concentration. Diffusion is driven by a gradient in Gibbs free energy or chemical p ...
,
convection Convection is single or multiphase fluid flow that occurs spontaneously due to the combined effects of material property heterogeneity and body forces on a fluid, most commonly density and gravity (see buoyancy). When the cause of the convec ...
, and
source Source may refer to: Research * Historical document * Historical source * Source (intelligence) or sub source, typically a confidential provider of non open-source intelligence * Source (journalism), a person, publication, publishing institute o ...
terms. \int_t^ F(\varphi) \, dt = f\cdot F_\varphi^ + (1-f)\cdot F_\varphi^t \, \Delta t


Methods for evaluating function ''F''(''φ'')

After discretizing the time derivative, function F(\varphi) remains to be evaluated. The function is now evaluated using implicit and explicit-time integration.Jirka Simunek
/ref>


Implicit-time integration

This methods evaluates the function F(\varphi) at a future time.


Formulation

The evaluation using implicit-time integration is given as: \frac = F( \varphi^ ), This is called implicit integration as \varphi^ in a given cell is related to \varphi^ in neighboring cells through F(\varphi^): \varphi^ = \varphi^n + \Delta t F( \varphi^ ), In case of implicit method, the setup is unconditionally stable and can handle large time step (\Delta t). But, stability doesn't mean accuracy. Therefore, large \Delta t affects accuracy and defines time resolution. But, behavior may involve physical timescale that needs to be resolved.


Explicit-time integration

This methods evaluates the function F(\varphi) at a current time.


Formulation

The evaluation using explicit-time integration is given as: \frac = F(\varphi^n), And is referred as explicit integration since \varphi^ can be expressed explicitly in the existing solution values, \varphi^: \varphi^ = \varphi^n + \Delta t \, F( \varphi^n ), Here, the time step (\Delta t) is restricted by the stability limit of the solver (i.e., time step is limited by the
Courant–Friedrichs–Lewy condition In mathematics, the convergence condition by Courant–Friedrichs–Lewy is a necessary condition for convergence while solving certain partial differential equations (usually hyperbolic PDEs) numerically. It arises in the numerical analysis of ex ...
). To be accurate with respect to time the same time step should be used in all the domain, and to be stable the time step must be the minimum of all the local time steps in the domain. This method is also referred to as "global time stepping".


Examples

Many schemes use explicit-time integration. Some of these are as follows: *
Lax–Wendroff method The Lax–Wendroff method, named after Peter Lax and Burton Wendroff, is a numerical method for the solution of hyperbolic partial differential equations, based on finite difference A finite difference is a mathematical expression of the form . ...
* Runge–Kutta method


See also

*
Courant–Friedrichs–Lewy condition In mathematics, the convergence condition by Courant–Friedrichs–Lewy is a necessary condition for convergence while solving certain partial differential equations (usually hyperbolic PDEs) numerically. It arises in the numerical analysis of ex ...
. *
Von Neumann stability analysis The term ''von'' () is used in German language surnames either as a nobiliary particle indicating a noble patrilineality, or as a simple preposition used by commoners that means ''of'' or ''from''. Nobility directories like the ''Almanach de Go ...
. *
Finite element method The finite element method (FEM) is a popular method for numerically solving differential equations arising in engineering and mathematical modeling. Typical problem areas of interest include the traditional fields of structural analysis, heat ...
*
Explicit and implicit methods Explicit and implicit methods are approaches used in numerical analysis for obtaining numerical approximations to the solutions of time-dependent ordinary and partial differential equations, as is required in computer simulations of physical pro ...
* Chi-Wang Shu


References

{{reflist Computer-aided engineering